:root {
	--ds-primary-color: #fca901;
	--ds-menu-color: #222222;
	--ds-call-menu-color: #2f2f2f;
	--ds-btn-color: #ffffff;
	--ds-heading-color: #374957;
	--ds-para-color: #869fb2;
	--ds-border-color: #e3e9ed;
	--ds-form-background: #f7f9fb;
	--ds-footer-bg-color: #1f2537;
}

* {
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
}

body {
	font-family: 'Roboto', sans-serif;
	transition: all 0.3s;
	line-height: 1.5;
	background-color: var(--ds-btn-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

ul,
p {
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
}

ul li {
	list-style-type: none;
}

a {
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
}

.form-control:focus {
	box-shadow: none;
}

input:focus-visible {
	outline: none;
}

.form-control:focus {
	box-shadow: none;
	border-color: transparent;
}

img {
	max-width: 100%;
}

:focus-visible {
	outline: none;
	border-color: transparent;
}

@media (min-width: 1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1170px;
	}
}

/*-------------- header section css start ----------*/
.dschool-header-wrapper {
	background-image: url('../images/header-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.dschool-header-menu {
	background-image: url('../images/header-shape.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 0px 15px 50px;
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-columns: 1fr auto 1fr;
	gap: 50px;
	z-index: 9;
}
.dschool-header-menu.pp-header-fixed{
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
}
.dschool-header-menu.ds-fixed .dschool-lmenu-wrapper,
.dschool-header-menu.ds-fixed .ds-navmenu-wrapper {
	margin-top: 0;
}

.dschool-header-menu.ds-fixed {
	margin-top: 0;
	background-color: var(--ds-btn-color);
	position: sticky;
	top: 150px;
	left: 0;
	width: 100%;
	z-index: 1000;
	-webkit-animation: slideInDown 1s;
	-moz-animation: slideInDown 1s;
	-ms-animation: slideInDown 1s;
	-o-animation: slideInDown 1s;
	animation: slideInDown 1s;
	backface-visibility: hidden;
	padding: 10px 0 20px;
	box-shadow: 0 0 30px rgb(0 0 0 / 15%);
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.dropdown-toggle::after {
	position: absolute;
	top: 23px;
	right: 10px;
}

.dschool-lmenu-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: -25px;
}

.ds-lmenu {
	display: flex;
	align-items: center;
	transition: all .3s ease-in-out;
}

.ds-lmenu:hover {
	transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
}

.ds-lmenu:hover p span {
	color: var(--ds-primary-color);
}

.ds-lmenu-mail {
	margin-left: 30px;
}

.ds-lmenu-content span {
	font-size: 16px;
	color: var(--ds-primary-color);
	font-weight: 700;
	margin-left: 7px;
	text-transform: capitalize;
}

.ds-lmenu-content a {
	font-size: 16px;
    color: var(--ds-menu-color);
	font-weight: 400;
}

.ds-logo-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	/* padding: 18px 80px 0 120px; */
	padding: 20px 50px 0;

}

.ds-logo-wrapper img {
	max-width: 157px;
	height: 86px;
	object-fit: contain;
}

.call-icon img {
	max-width: 19px;
	max-height: 20px;
	object-fit: contain;
}

.mail-icon img {
	max-width: 19px;
	max-height: 20px;
	object-fit: contain;
}

.ds-logo-wrapper h1 {
	font-size: 32px;
	color: var(--ds-menu-color);
	font-weight: 700;
	font-family: "Cormorant Garamond";
	text-transform: capitalize;
}

.ds-navmenu-wrapper {
	display: flex;
	align-items: center;
	margin-top: -25px;
}

.ds-nav-menu ul li {
	display: inline-block;
	padding: 0 12px;
}

.ds-nav-menu ul li a {
	font-size: 16px;
	color: var(--ds-menu-color);
	font-weight: 400;
	text-transform: capitalize;
	transition: all .3s ease-in-out;
	position: relative;
}

.ds-nav-menu ul li.active a,
.ds-nav-menu ul li a:hover {
	color: var(--ds-primary-color);
}

/* .ds-nav-menu ul li a:after{
  position: absolute;
  content: '';
  width: 0;
  height: 3px;
  top: 100%;
  left: 0;
  background-color: var(--ds-primary-color);
} */
.ds-nav-menu ul li a:hover:after,
.ds-nav-menu ul li.active a::after {
	width: 100%;
}

.ds-navbtn {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	transition: all .3s ease-in-out;
	width: 150px;
	max-width: 100%;
	min-height: 50px;
	background-color: var(--ds-primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease-in-out;
	border: 1px solid transparent;
	position: relative;
	cursor: pointer;
	color: var(--ds-btn-color);
}
.ds-navbtn:hover {
	color: var(--ds-btn-color);
}

/* .ds-navbtn.read_border{
  border: 1px solid var(--ds-primary-color);
}
.ds-navbtn{
  z-index: 1;
  background: var(--ds-btn-color);
}
.ds-navbtn:hover a{
  color: var(--ds-primary-color);
}
.ds-navbtn:hover{
  background: var(--ds-btn-color);
  border: 1px solid var(--ds-primary-color);
}
.ds-navbtn:after{
  content: " ";
  position: absolute;
  height: 100%;
  width: 55%;
  background: var(--ds-primary-color);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease-out;
}
.ds-navbtn::before{
  content: " ";
  position: absolute;
  height: 100%;
  width: 55%;
  background: var(--ds-primary-color);
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.3s ease-out;
} */
/* .ds-navbtn:hover::before {
  width: 0;
}
.ds-navbtn:hover::after {
  width: 0;
} */
.btn-ml {
	margin-left: 10px;
}

.dschool-header-heading {
	animation-name: fadeInLeft 2s;
	-moz-animation: fadeInLeft 2s;
	-o-animation: fadeInLeft 2s;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		-o-transform: translate3d(-100%, 0, 0);
		-moz-transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
	}
}

.bootstrap-timepicker-widget table td input {
	border-color: transparent;
}

.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--ds-primary-color);
}

.dropdown-menu.show,
.nice-select.open .list {
	/* margin-top: 55px !important; */
	width: 170px;
	text-transform: capitalize;
	transition: all .3s ease-in-out;
	padding: 3px 0;
	left: 15px !important;
	box-shadow: 0 0 30px rgb(0 0 0 / 15%);
	border: 1px solid transparent;
	transform: translate(0px, 0px) !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: var(--ds-primary-color);
	font-weight: 400;
	/* color: var(--ds-btn-color); */
}

.nice-select .option:hover {
	color: var(--ds-btn-color);
}

.dropdown-menu.show li a {
	text-align: left;
	padding: 4px 28px;
}

.dropdown-item:focus,
.dropdown-item:hover {
	color: var(--ds-btn-color);
	background-color: var(--ds-primary-color);
}

.ds-header-text {
	display: flex;
	flex-direction: column;
	padding: 200px 0;
	margin-bottom: 120px;
	transition: all .3s ease-in-out;
}

.ds-header-text h1 {
	font-size: 48px;
	color: var(--ds-btn-color);
	font-weight: 700;
	font-family: "Roboto";
	padding-bottom: 15px;
	position: relative;
}

/* .ds-header-text h1::after{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 3px;
  width: 356px;
  max-width: 100%;
  background-color: var(--ds-primary-color);
} */
.ds-header-text p {
	width: 570px;
	max-width: 100%;
	font-size: 18px;
	color: var(--ds-btn-color);
	font-weight: 400;
	padding: 20px 0 35px;
}

.ds-toggle {
	display: none;
	margin-top: 7px;
	z-index: 1;
	position: relative;
	left: 50px;
	cursor: pointer;
}

.ds-toggle>span {
	display: block;
	height: 3px;
	width: 26px;
	background-color: var(--ds-primary-color);
	font-size: 30px;
	margin-bottom: 5px;
	transition: all 0.5s linear;
	transform-origin: 0;
}

.open-toggle .ds-toggle>span:nth-child(2) {
	width: 20px;
}

.open-toggle .ds-toggle>span:nth-child(3) {
	width: 15px;
}

/*-------------- header section css end ----------*/
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

/*-------------- book css start ----------*/
.dschool-book-wrapper {
	position: relative;
	content: '';
	margin-top: -130px !important;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.ds-book-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.dschool-book-wrapper {
	width: 1170px;
	max-width: 100%;
	max-height: 100%;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
	background-color: var(--ds-btn-color);
	padding: 30px;
}

.ds-book-heading h1 {
	font-size: 22px;
	color: var(--ds-heading-color);
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
	padding: 0 20px;
}

.form-control,
.select-control,
.form-time,
.form-date {
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	text-transform: capitalize;
	width: 100%;
	max-width: 100%;
	height: 50px;
	background-color: var(--ds-form-background);
	border: 1px solid var(--ds-border-color);
	padding: 10px 20px;
	cursor: pointer;
}

input.form-control:focus,
select.select-control:focus-visible {
	border: 1px solid var(--ds-border-color);
	outline: none;
}

.nice-select:after {
	position: absolute;
	display: inline-block;
	margin-left: 5px;
	vertical-align: 5px;
	content: "";
	border-top: 5px solid;
	border-right: 5px solid transparent;
	border-bottom: 0;
	border-left: 5px solid transparent;
	transform: rotate(0deg) !important;
	content: '';
}

input::placeholder {
	color: var(--ds-para-color) !important;
}

.form-mar {
	margin-bottom: 30px;
}

.select-control,
.form-time,
.form-date {
	/* width: 195px; */
	position: relative;
	text-align: left;
	border: 1px solid transparent;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: transparent;
}

span.date-icon,
.time-icon {
	position: absolute;
	top: 6px;
	right: 10px;
	cursor: pointer;
}

.pp-datePicker-input,
.input-group.timepicker {
	display: flex;
	position: relative;
	max-width: 100%;
	/* width: 190px; */
}

span.input-group-append.date-icon .input-group-text {
	border-color: transparent;
	background-color: transparent;
}

input#timePicker {
	background-color: var(--ds-form-background);
	/* width: 140px;
  max-width: 100%; */
	position: relative;
}

.input-group-text {
	background-color: #f7f9fb;
	border: 1px solid #f7f9fb;
}

/* span.input-group-append.date-icon .input-group-text */
/* .ds-book-form-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
} */
.ds-book-form-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;

}

.pp_form_main button {
	margin-top: 20px;
}

.ds-book-form {
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.ds-book-form .ds-select-form,
.ds-book-form .ds-date-form,
.ds-book-form .ds-time-form {
	position: relative;
}

.ds-select-form .select-icon,
.ds-date-form .calender-icon,
.ds-time-form .time-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #859fb1;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
}

/*-------------- book css end ----------*/
/*-------------- About section css start ----------*/
.dschool-about-wrapper {
	padding: 80px 0;
	/* z-index: -1;
  position: relative; */
}

.ds-about-text {
	display: flex;
	flex-direction: column;
	transition: all .3s ease-in-out;
}

.ds-about-text h6 {
	font-size: 16px;
	letter-spacing: 4px;
	color: var(--ds-primary-color);
	font-weight: 700;
	text-transform: uppercase;
}

.ds-about-text h1 {
	font-size: 40px;
	color: var(--ds-heading-color);
	font-weight: 500;
	text-transform: capitalize;
	padding: 20px 0;
	position: relative;
	max-width: 100%;
	width: 500px;
}

/* .ds-about-text h1:after, .ds-chheader-text h1::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 287px;
  max-width: 100%;
  height: 3px;
  background-color: var(--ds-primary-color);
} */
.ds-about-text p {
	width: 470px;
	max-width: 100%;
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	padding: 20px 0 45px;
}

.ds-about-course-wrapper,
.ds-about-icon-text {
	display: flex;
	flex-direction: column;
}

.ds-about-icon-text {
	margin-left: 20px;
}

.ds-about-icon-box {
	display: flex;
	margin-bottom: 30px;
	transition: all .3s ease-in-out;
}

.ds-about-icon-box:hover .ds-about-icon-text h2 {
	color: var(--ds-primary-color);
}

.ds-about-icon-box:hover .ds-about-icon img {
	transform: rotateY(180deg);
}

.ds-about-icon-text h2 {
	font-size: 18px;
	color: var(--ds-heading-color);
	font-weight: 700;
	text-transform: capitalize;
}

.ds-about-icon-text p {
	width: 206px;
	max-width: 100%;
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	font-family: "Roboto";
	padding: 10px 0;
}

.ds-about-icon-text a {
	font-size: 14px;
	color: var(--ds-primary-color);
	font-weight: 400;
	font-family: "Roboto";
	text-transform: capitalize;
	text-align: left;
}
.ds-about-icon img {
	max-width: 42px;
	height: 42px;
	object-fit: contain;
}
/* swiper slider css */
.swiper {
	width: 100%;
	height: 100%;
}

.ds-about-slider-wrapper .swiper-slide img {
	width: 263px;
	height: 350px;
	object-fit: cover;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: var(--ds-btn-color);
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ds-about-slider .swiper-pagination,
.ds-ourteam-slider .swiper-pagination {
	position: relative;
	margin-top: 40px;
}

span.swiper-pagination-bullet {
	width: 14px;
	height: 6px;
	border-radius: 2px;
	background-color: var(--ds-heading-color);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 18px;
	height: 6px;
	border-radius: 2px;
	background-color: #6c757d;
}

span.flatpickr-prev-month svg,
span.flatpickr-next-month svg {
	height: 10px;
}

.flatpickr-month {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

span.next img {}

span.prev img {}

/*-------------- About section css end ----------*/
/*-------------- Service section css start ----------*/
.ds-sheader-text h6 {
	font-size: 16px;
	letter-spacing: 4px;
	color: var(--ds-primary-color);
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.ds-sheader-text h1 {
	font-size: 32px;
	color: var(--ds-heading-color);
	font-weight: 500;
	text-align: center;
	text-transform: capitalize;
	margin-bottom: 50px;
}

.ds-ser-box {
	width: 260px;
	max-width: 100%;
	height: 312px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
	background-color: var(--ds-btn-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
	margin-bottom: 30px;
	transition: all .5s linear;
	/* border-bottom: 2px solid #fff; */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

}

.ds-ser-box:hover img {
	animation: swing 0.8s ease-out 1;
	-o-animation: swing 0.8s ease-out 1;
	-moz-animation: swing 0.8s ease-out 1;
}

@keyframes swing {
	20% {
		transform: rotate(15deg);
		-o-transform: rotate(15deg);
		-moz-transform: rotate(15deg);
	}

	40% {
		transform: rotate(-10deg);
		-o-transform: rotate(-10deg);
		-moz-animation: rotate(-10deg);
	}

	60% {
		transform: rotate(5deg);
		-o-transform: rotate(5deg);
		-moz-transform: rotate(5deg);
	}

	80% {
		transform: rotate(-5deg);
		-o-transform: rotate(-5deg);
		-moz-transform: rotate(-5deg);
	}

	100% {
		transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
	}
}

.ds-ser-box:hover .ds-ser-text h2 {
	color: var(--ds-primary-color);
}

/* .ds-ser-box:hover .ds-ser-text a{
  border-bottom: 1px solid var(--ds-primary-color);
} */
/* .ds-ser-box:hover{
  border-bottom: 2px solid var(--ds-primary-color);
} */
.ds-ser-box img {
	margin-bottom: 30px;
}

.ds-ser-text h2 {
	font-size: 18px;
	color: var(--ds-heading-color);
	font-weight: 700;
	text-align: center;
	position: relative;
	padding: 0 0 13px;
	text-transform: capitalize;
}

.left-img {
	max-width: 32px;
	max-height: 17px;
	object-fit: contain;
}

.right-img {
	max-width: 33px;
	max-height: 17px;
	object-fit: contain;
}

span.input-group-text img {
	max-width: 17px;
	max-height: 19px;
	object-fit: contain;
}

/* .ds-ser-text h2::after{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 84px;
  height: 2px;
  background-color: var(--ds-primary-color);
} */
.ds-ser-text p {
	width: 206px;
	max-width: 100%;
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	text-align: center;
	padding: 0 0 5px;
}

.ds-ser-text a {
	font-size: 14px;
	color: var(--ds-primary-color);
	font-weight: 400;
	text-align: center;
	text-transform: capitalize;
}

.ds-ser-text {
	text-align: center;
}

.ds-ser-box img {
	max-width: 60px;
	height: 60px;
	object-fit: contain;
}

/*-------------- Service section css end ----------*/
/*-------------- Why choose section css start ----------*/

.ds-chheader-box img {
	max-width: 50px;
	height: 50px;
	object-fit: contain;
}

.ds-chheader-img img {
	width: 561px;
	height: 556px;
	object-fit: cover;
}

.dschool-choose-Wrapper {
	padding: 80px 0;
}

.ds-chheader-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ds-chheader-text h6 {
	font-size: 16px;
	letter-spacing: 4px;
	color: var(--ds-primary-color);
	font-weight: 700;
	text-transform: uppercase;
}

.ds-chheader-text h1 {
	font-size: 32px;
	color: var(--ds-heading-color);
	font-weight: 500;
	padding: 20px 0;
	position: relative;
	max-width: 100%;
	width: 510px;
}

.ds-chheader-text p,
.ds-chheader-box-text p {
	width: 570px;
	max-width: 100%;
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	padding: 20px 0;
}

.ds-chheader-box {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	transition: all .3s ease-in-out;
}

.ds-chheader-box:hover .ds-chheader-box-text h3 {
	color: var(--ds-primary-color);
}

.ds-chheader-box:hover img {
	transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}

.ds-chheader-box-text {
	margin-left: 20px;
}

.ds-chheader-box-text h3 {
	font-size: 18px;
	color: var(--ds-heading-color);
	font-weight: 700;
	text-transform: capitalize;
}

.ds-chheader-box-text>p {
	padding: 10px 0;
	width: 500px;
}

.ds-chheader-img,
.ds-course-box,
.ds-blog-lb-img,
.ds-blog-rb-img {
	overflow: hidden;
}

.ds-blog-rb-img img {
   height: 90px;
   width: 90px;
   object-fit: cover;

}
.ds-chheader-img img,
.ds-course-box img,
.ds-blog-lb-img img,
.ds-blog-rb-img img {
	transition: all .3s linear;
	cursor: pointer;
}

.ds-chheader-img:hover img,
.ds-course-box:hover img,
.ds-blog-lb-img:hover img,
.ds-blog-rb-img:hover img {
	transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.ds-blog-left-box:hover .ds-blog-lb-img img {
	transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.ds-blog-left-text {
	cursor: pointer;
}

/*-------------- Why choose section css end ----------*/
/*-------------- Testimonial section css start ----------*/
.dschool-testimonial-wrapper,
.dschool-our-team-wrapper,
.dschool-service-wrapper {
	background-color: #f6f9fa;
	padding: 80px 0 80px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.ds-test-img-text h1 {
	font-size: 18px;
	color: var(--ds-heading-color);
	font-weight: 700;
}

.ds-tetimonial-slider,
.ds-tetimonial-slider-wrapper {
	margin: 0 auto;
	text-align: center;
}

.ds-test-img-text span {
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
}

.ds-tetimonial-slider {
	max-height: 100%;
	height: 400px;
}

.ds-tetimonial-slider .swiper-wrapper .swiper-slide {
	display: flex;
	flex-direction: column;
	width: 772px;
	max-width: 100%;
	height: 270px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
	background-color: var(--ds-btn-color);
	align-items: center;
	justify-content: center;
	padding: 50px 0;
	margin-top: 33px;
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}


.ds-testimonial-img {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 70px 0 0 0;
}

.ds-bg-quote {
	position: absolute;
	left: 48%;
	right: 0;
	top: 48%;
	margin: auto;
	z-index: 0;
}

.ds-test-img-text {
	text-align: left;
	margin-left: 20px;
}

.dschool-testimonial-wrapper .container .row:nth-child(2) {
	align-items: center;
	justify-content: center;
}

.ds-tetimonial-slider .swiper-wrapper .swiper-slide p {
	width: 652px;
	max-width: 100%;
	/* height: 68px; */
	font-size: 16px;
	line-height: 24px;
	color: var(--ds-para-color);
	font-weight: 400;
	font-style: italic;
	/* font-family: "Roboto"; */
	text-align: center;
	padding: 30px 0;
	z-index: 1;
	position: relative;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	display: none;
}

/* .swiper-button-next .next .s1, .swiper-button-prev .prev .s1{
  fill: var(--ds-primary-color);
} */
.swiper-button-next .next:hover .s1,
.swiper-button-prev .prev:hover .s1 {
	fill: var(--ds-primary-color);
}

.swiper-button-next,
.swiper-button-prev {
	top: 27%;
}

.swiper-button-next {
	right: 25%;
}

.swiper-button-prev {
	left: 25%;
}

.swiper-button-next.swiper-button-disabled .next .s1,
.swiper-button-prev.swiper-button-disabled .prev .s1 {
	fill: #d7dbdd;

}

.ds-quote-img {
	position: absolute;
	top: -50px;
	right: 20px;
	display: none;
}

.ds-tetimonial-slider .swiper-slide .ds-quote-img img {
	max-width: 132px;
	max-height: 132px;
	object-fit: contain;
}

.ds-tetimonial-slider span.prev img {
	max-width: 27px;
	max-height: 15px;
	object-fit: contain;
}

.ds-tetimonial-slider span.next img {
	max-width: 27px;
	max-height: 18px;
	object-fit: contain;
}

.ds-tetimonial-slider .swiper-wrapper .swiper-slide .ds-testimonial-img img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 100px;
}

.swiper-slide .ds-bg-quote img {
	max-width: 118px;
	max-height: 111px;
	object-fit: contain;
}

/*-------------- Testimonial section css end ----------*/
/*-------------- Course section css start ----------*/

.ds-course-box img {
	width: 366px;
	height: 297px;
	object-fit: cover;
}

.dschool-course-wrapper,
.dschool-blog-wrapper {
	padding: 80px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.ds-course-text {
	padding: 30px 0 25px;
}

.ds-course-box-wrapper:hover .ds-course-box img {
	transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.ds-course-box-wrapper {
	transition: all .3s ease-in-out;
}

.ds-course-box-wrapper:hover .ds-course-text h3 {
	color: var(--ds-primary-color);
}

.ds-course-text h3 {
	font-size: 22px;
	color: var(--ds-heading-color);
	font-weight: 500;
	text-transform: capitalize;
	position: relative;
}

.ds-course-text p {
	width: 348px;
	max-width: 100%;
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	padding-top: 20px;
}

/*-------------- Course section css end ----------*/
/*-------------- Our Team section css start ----------*/

.ds-ot-box .ds-ot-box-img img {
	width: 264px;
	height: 294px;
	object-fit: cover;
}

.ds-team-text {
	background-color: var(--ds-btn-color);
	padding: 25px 0;
	text-align: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.ds-ourteam-slider .swiper-wrapper .swiper-slide {
	display: flex;
	flex-direction: column;
	position: relative;
}

.overlay {
	position: absolute;
	content: '';
	top: 38%;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0 0 0 / 70%);
	height: 295px;
	max-height: 100%;
	transform: translateY(-50%) scale(0);
	-o-transform: translateY(-50%) scale(0);
	-moz-transform: translateY(-50%) scale(0);
	transition: all 0.50s linear;
}

.ds-ot-box-img img {
	object-fit: none;
}

.ds-ot-box {
	transition: all 0.9s linear;
	position: relative;
}

.ds-ot-box:hover .overlay {
	transform: translateY(-50%) scale(1);
	-o-transform: translateY(-50%) scale(1);
	-moz-transform: translateY(-50%) scale(1);
}

.ds-ot-box:hover {
	box-shadow: 0px 0px 18px -8px rgb(0 0 0 / 50%);
}

.social-icon {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
}

.social-icon ul {
	display: flex;
	align-items: center;
	justify-content: center;

}

.social-icon ul li a {
	color: var(--ds-btn-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border-radius: 20px;
	background-color: rgb(255 255 255 / 20%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease-in-out;
	margin-left: 10px;
}

.social-icon ul li a:hover {
	background-color: var(--ds-primary-color);
}

.ds-team-text h3 {
	font-size: 20px;
	color: var(--ds-heading-color);
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
}

.ds-team-text p {
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	text-align: center;
	text-transform: capitalize;
}

/*-------------- Our Team section css end ----------*/
/*-------------- Blog section css start ----------*/
.ds-blog-comment {
	display: flex;
	align-items: center;
	padding: 15px 0;
}

.ds-blog-comment .date span,
.ds-blog-comment .comment span {
	font-size: 14px;
	color: var(--ds-para-color);
	font-weight: 400;
	text-align: center;
	text-transform: capitalize;
	transition: all .3s ease-in-out;
}

.ds-blog-comment .comment {
	margin-left: 30px;
}

/* .ds-blog-comment:hover .date span, .ds-blog-comment:hover .comment span{
  color: var(--ds-primary-color);
} */
.ds-blog-right-text p {
	width: 260px;
	/* height: 54px; */
	font-size: 18px;
	color: var(--ds-heading-color);
	font-weight: 700;
}

.ds-blog-left-text p {
	width: 345px;
	max-width: 100%;
	font-size: 20px;
	color: var(--ds-heading-color);
	font-weight: 700;
}

.ds-blog-right-wrapper {
	display: flex;
	flex-direction: column;
}

.ds-blog-right-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.ds-blog-right-box:nth-child(3) {
	margin-bottom: 0;
}

.ds-blog-right-text {
	margin-left: 10px;
}

.ds-blog-right-text>.ds-blog-left-text>.ds-blog-comment {
	padding: 0 0 15px 0;
}

.ds-blog-left-box:hover .ds-blog-left-text p,
.ds-blog-right-box:hover .ds-blog-right-text p {
	color: var(--ds-primary-color);
}

.ds-blog-right-box:hover .ds-blog-rb-img img {
	transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.ds-blog-lb-img img {
	width: 366px;
	height: 218px;
	object-fit: cover;
}

.ds-blog-comment .date img {
	max-width: 17px;
	max-height: 19px;
	object-fit: contain;
}

.ds-blog-comment .comment img {
	max-width: 17px;
	max-height: 19px;
	object-fit: contain;
}

/*-------------- Blog section css end ----------*/
/*-------------- Footer section css start ----------*/
.dschools-footer-wrapper {
	background-color: var(--ds-footer-bg-color);
	padding: 80px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.ds-sheader-text.ds-footer-head h1 {
	color: var(--ds-btn-color);
}

.ds-footer-sponsers-img span.active svg .s0,
span.sponsers.active svg .s0 {
	fill: var(--ds-primary-color);
}

span.sponsers {
	transition: all .3s ease-in-out;
}

span.sponsers:hover svg .s0,
span.sponsers:hover svg .cls-1 {
	fill: var(--ds-primary-color);
}

.ds-footer-logo p {
	font-size: 14px;
	color: var(--ds-btn-color);
	font-weight: 400;
	padding: 30px 0;
}

.ds-footer-logo img {
	max-width: 223px;
	height: 44px;
	object-fit: contain;
}

.ds-footer-logo h2 {
	font-size: 16px;
	color: var(--ds-primary-color);
	font-weight: 500;
}

.ds-footer-logo span a {
	font-size: 14px;
	color: var(--ds-btn-color);
	font-weight: 400;
}

.ds-footer-box h3 {
	font-size: 22px;
	color: var(--ds-btn-color);
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 34px;
	text-transform: capitalize;
	position: relative;
}

.ds-footer-box ul li {
	position: relative;
	padding: 2px 0;
}

.ds-footer-box ul li a {
	font-size: 14px;
	color: var(--ds-btn-color);
	font-weight: 400;
	text-transform: capitalize;
	transition: all .3s ease-in-out;
}

.ds-footer-box ul li a:hover {
	color: var(--ds-primary-color);
}

.ds-footer-sponsers-wrapper {
	padding-bottom: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ds-fcall-img {
	display: flex;
	align-items: center;
}

.ds-fcall {
	margin-bottom: 20px;
}

.ds-footer-section {
	padding: 80px 0 0;
}

.ds-footer-sponsers-img {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.ds-fcall h4 {
	font-size: 16px;
	color: var(--ds-primary-color);
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.ds-fcall .ds-fcall-img a {
	font-size: 14px;
	color: var(--ds-btn-color);
	font-weight: 400;
	margin-left: 10px;
}

.dschools-copyright-wrapper {
	background-color: #262d41;
	padding: 15px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.ds-copyright-text p {
	font-size: 14px;
	color: var(--ds-btn-color);
	font-weight: 400;
	text-align: center;
}

.ds-footer-sponsers-slider .swiper-slide {
	background-color: transparent;
}

.ds-footer-sponsers-slider .swiper-slide img {
	max-width: 100px;
	height: 50px;
	object-fit: contain;
}

.ds-fcall-img img {
	max-width: 26px;
	max-height: 31px;
	object-fit: contain;
}

/*-------------- Footer section css end ----------*/
[type="date"]::-webkit-inner-spin-button {
	display: none;
}

[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
}

/* media css start */
@media(max-width:1870px) {
	.dschool-header-menu {
		padding: 0 0 47px;
	}

	.ds-logo-wrapper {
		padding: 18px 80px 0 120px;
	}
}

@media(max-width:1800px) {
	.dschool-header-menu {
		padding: 0 0 42px;
	}

	.ds-logo-wrapper {
		padding: 18px 80px 0 130px;
	}
}

@media(max-width:1750px) {
	.dschool-header-menu {
		padding: 0 0 41px;
	}

	.ds-logo-wrapper {
		padding: 15px 70px 0 110px;
	}
}

@media(max-width:1700px) {
	.dschool-header-menu {
		padding: 0 0 37px;
	}
}

@media(max-width:1650px) {
	.ds-logo-wrapper {
		padding: 11px 60px 0 105px;
	}

	.ds-navmenu-wrapper,
	.dschool-lmenu-wrapper {
		margin-top: -30px;
	}
}

@media(max-width:1600px) {
	.ds-logo-wrapper {
		padding: 6px 60px 0 105px;
	}
}

@media(max-width:1599px) {
	.dschool-header-menu {
		background-image: none;
		background-color: #fff;
		padding: 10px 0;
	}

	.ds-navmenu-wrapper,
	.dschool-lmenu-wrapper {
		margin-top: 0px;
	}
}

@media(max-width:1500px) {
	.ds-logo-wrapper {
		padding: 0 50px;
	}

	.ds-lmenu-mail {
		margin-left: 25px;
	}
}

@media(max-width:1400px) {
	.ds-logo-wrapper {
		padding: 0;
	}

	.dschool-header-menu {
		justify-content: space-evenly;
	}

	.ds-lmenu-mail {
		margin-left: 3px;
	}

	.ds-nav-menu ul li {
		padding: 0 7px;
	}
}

@media(max-width:1300px) {
	.ds-nav-menu ul li {
		padding: 0 8px;
	}

	.overlay {
		height: 285px;
	}
}

@media(max-width:1299px) {
	.ds-nav-menu ul li {
		padding: 0 4px;
	}
}

@media(max-width:1199px) {

	.dschool-lmenu-wrapper {
		flex-wrap: wrap;
	}

	.ds-toggle {
		display: block;
	}

	.ds-nav-menu {
		position: fixed;
		left: -200px;
		bottom: 0;
		width: 200px;
		height: 100%;
		padding: 20px;
		background-color: #fff;
		transition: all .3s ease-in-out;
		z-index: 1000;
	}

	.ds-nav-menu ul li {
		display: block;
		padding: 10px 0;
	}

	.ds-nav-menu ul li a {
		padding: 10px 10px;
	}

	.open-toggle .ds-nav-menu {
		left: 0;
	}

	.dschool-header-menu {
		flex-wrap: wrap;
	}

	.ds-chheader-box-text>p {
		width: auto;
	}

	.ds-blog-right-wrapper {
		margin-top: 20px;
	}

	.overlay {
		height: 240px;
		top: 35%;
	}
}

@media(max-width:1024px) {
	.ds-toggle {
		left: 20px;
	}

	.form-control {
		/* width: 300px; */
	}
}

@media(max-width:992px) {
	.ds-toggle {
		left: 20px;
	}

	.ds-book-form {
		flex-wrap: wrap;
	}

	.select-control,
	.form-time,
	.form-date {
		/* width: 130px; */
	}
}

@media(max-width:991px) {
	.btn-ml {
		margin-left: 0px;
	}

	.ds-toggle {
		left: 5px;
	}

	.dschool-lmenu-wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}

	.ds-navmenu-wrapper {
		justify-content: center;
	}

	.form-control {
		/* width: 220px;  */
	}

	.ds-book-form .ds-navbtn {
		margin-top: 20px;
	}

	.dschool-book-wrapper {
		height: auto;
	}

	.ds-course-box-wrapper {
		margin-bottom: 20px;
	}

	.ds-footer-logo,
	.ds-footer-box {
		margin-bottom: 20px;
	}
}

@media(max-width:900px) {
	.dschool-header-menu {
		flex-direction: column;
		grid-template-columns: 1fr;
	}

	.ds-logo-wrapper {
		padding: 10px 0;
	}
}

@media(max-width:768px) {
	.ds-chheader-img {
		text-align: center;
	}
}

@media(max-width:767px) {
	.dschool-book-wrapper {
		height: auto;
	}

	.form-control,
	.select-control,
	.form-time,
	.form-date {
		margin-bottom: 10px;
	}

	.ds-chheader-box-text>p {
		width: auto;
	}

	.ds-header-text {
		padding-left: 0;
	}

	.ds-blog-left-box {
		margin-bottom: 20px;
	}

	.ds-book-form {
		justify-content: space-evenly;
	}

	.swiper-button-next {
		right: 10%;
	}

	.swiper-button-prev {
		left: 10%;
	}

	.overlay {
		height: 280px;
		top: 37%;
	}

	.ds-book-form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 15px;
	}
}

@media(max-width:630px) {
	.overlay {
		height: 300px;
		top: 38%;
		width: 300px;
		max-width: 100%;
	}

	.ds-ot-box {
		left: 0;
		right: 0;
	}
}

@media(max-width:480px) {

	.swiper-button-next,
	.swiper-button-prev,
	.ds-quote-img {
		display: none;
	}

	.ds-testimonial-img {
		flex-wrap: wrap;
	}

	.ds-tetimonial-slider .swiper-wrapper .swiper-slide p {
		width: auto;
	}

	.ds-tetimonial-slider .swiper-wrapper .swiper-slide {
		height: auto;
	}

	.ds-blog-right-text p {
		width: auto;
	}
}

@media(max-width:575px) {
	.ds-ser-box {
		margin: 0 auto;
		margin-bottom: 30px !important;
	}

}

@media(max-width:370px) {
	.ds-blog-comment .comment {
		margin-left: 20px;
	}

	.ds-blog-comment {
		flex-wrap: wrap;
	}
}

@media(max-width:360px) {
	.ds-blog-comment .comment {
		margin-left: 0px;
	}
}